function wyswietl(napis)
{
  alert(napis);
}

wyswietl("To jest napis.");
wyswietl(128);
wyswietl(3.14);
wyswietl(true);
